home *** CD-ROM | disk | FTP | other *** search
/ Loadstar 27 / 027.d81 / prebase test (.txt) < prev    next >
Commodore BASIC  |  2022-08-26  |  317b  |  25 lines

  1. 10 rem prebase test
  2. 15 while peek(198)=0
  3. 20 .gosub hi-prin
  4. 30 .gosub hello-prin
  5. 40 .gosub bye-prin
  6. 45 endwhile
  7. 50 .goto see-ya
  8. 70 hi-prin
  9. 80 .print"[147]hi"
  10. 82 .gosub delay
  11. 84 .return
  12. 90 hello-prin
  13. 92 .print"[147]hello"
  14. 94 .gosub delay
  15. 96 .return
  16. 100 bye-prin
  17. 110 .print"[147]bye"
  18. 120 .gosub delay
  19. 130 .return
  20. 150 see-ya
  21. 160 .end
  22. 180 delay
  23. 190 .fordl=1to500:next
  24. 192 .return
  25.